filterNotNull()
"does what it says on the tin" — it filters out any
null
values and passes along the rest. This is useful for cases where
the upstream provider is emitting a mix of null
and not-null
values, and you
only care about the not-null
values.
You can learn more about this in:
Tags: